home *** CD-ROM | disk | FTP | other *** search
/ Visual Basic Source Code / Visual Basic Source Code.iso / vbsource / winexit / about.frm next >
Text File  |  1994-08-26  |  2KB  |  92 lines

  1. VERSION 2.00
  2. Begin Form frmAbout 
  3.    BackColor       =   &H00C0C0C0&
  4.    BorderStyle     =   3  'Fixed Double
  5.    Caption         =   "About Exit Windows"
  6.    ClientHeight    =   1275
  7.    ClientLeft      =   2115
  8.    ClientTop       =   2580
  9.    ClientWidth     =   4335
  10.    Height          =   1680
  11.    Left            =   2055
  12.    LinkTopic       =   "Form1"
  13.    ScaleHeight     =   1275
  14.    ScaleWidth      =   4335
  15.    Top             =   2235
  16.    Width           =   4455
  17.    Begin CommandButton cmdOK 
  18.       BackColor       =   &H00C0C0C0&
  19.       Caption         =   "OK"
  20.       Default         =   -1  'True
  21.       Height          =   375
  22.       Left            =   3540
  23.       TabIndex        =   0
  24.       Top             =   240
  25.       Width           =   675
  26.    End
  27.    Begin Line Line1 
  28.       BorderWidth     =   2
  29.       X1              =   60
  30.       X2              =   4200
  31.       Y1              =   840
  32.       Y2              =   840
  33.    End
  34.    Begin Label Label4 
  35.       BackColor       =   &H00C0C0C0&
  36.       Caption         =   "Comments to Rob @ Compuserve (100413,1342)"
  37.       Height          =   195
  38.       Left            =   60
  39.       TabIndex        =   4
  40.       Top             =   960
  41.       Width           =   4155
  42.    End
  43.    Begin Label Label1 
  44.       BackColor       =   &H00C0C0C0&
  45.       Caption         =   "Copyright ⌐ 1994"
  46.       Height          =   195
  47.       Left            =   780
  48.       TabIndex        =   3
  49.       Top             =   300
  50.       Width           =   1995
  51.    End
  52.    Begin Label Label3 
  53.       BackColor       =   &H00C0C0C0&
  54.       Caption         =   "Freeware, All rights reserved."
  55.       Height          =   195
  56.       Left            =   780
  57.       TabIndex        =   2
  58.       Top             =   540
  59.       Width           =   2535
  60.    End
  61.    Begin Label Label2 
  62.       BackColor       =   &H00C0C0C0&
  63.       Caption         =   "Author : Rob McIntosh"
  64.       Height          =   195
  65.       Left            =   780
  66.       TabIndex        =   1
  67.       Top             =   60
  68.       Width           =   2055
  69.    End
  70.    Begin Image Image1 
  71.       Height          =   480
  72.       Left            =   120
  73.       Picture         =   ABOUT.FRX:0000
  74.       Top             =   180
  75.       Width           =   480
  76.    End
  77. End
  78. Option Explicit
  79.  
  80. Sub cmdOK_Click ()
  81.     Unload Me
  82. End Sub
  83.  
  84. Sub Form_Load ()
  85. CentreForm Me
  86. End Sub
  87.  
  88. Sub Form_Paint ()
  89.     MakeForm3D Me
  90. End Sub
  91.  
  92.